home *** CD-ROM | disk | FTP | other *** search
- /* The global container, includes all objects of program. Manages mouse
- and keyboard events, calls objects and application functions of program.
- See manual for details.
- */
-
- #ifndef __PROGRAM_KIT_H_
- #define __PROGRAM_KIT_H_
-
- #include "appkit.h"
-
- class ProgramKit : public ApplicationKit
- {
- public:
- ProgramKit(int stp, loc minsz = loc(10, 10))
- : ApplicationKit(stp, minsz)
- {}
- virtual void exe(int act = 0);
- };
-
- #endif __PROGRAM_KIT_H_